| C# |
|---|
| public static String BytesToText(Byte[] bytes) |
| C# |
|---|
using LJCNetCommon; // Creates text from a byte array. private static void BytesToText() { // Setup byte[] bytes = NetCommon.TextToBytes("Text"); // Creates text from a byte array. string text = NetCommon.BytesToText(bytes); } |